header {
  background-color: #1e1f38;
  padding: 2%;
  font-size: 60px;
  font-family: 'Lilita One', cursive;
  color: white;
}

#instructions {
  max-width: 80ch;
  text-align: center;
  -webkit-text-decoration: bold;
          text-decoration: bold;
}

#candidateInput {
  padding-top: 2%;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#colorBar {
  background: #ff5a3d;
  padding-top: 30px;
  width: 100%;
  height: 55px;
  border-style: solid;
  border-color: #ff5a3d;
  background-color: #ff5a3d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#bottomBar {
  background: #1e1f38;
  width: 100%;
  height: 55px;
  border-style: solid;
  border-color: #1e1f38;
  background-color: #1e1f38;
}

.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0px;
}

#jumboContainer {
  width: 55%;
}

#outputContain, #determineWinner {
  text-align: center;
}

#buttonHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

#winnerBox-hidden {
  opacity: 0;
}

button {
  width: 100%;
}

#sub {
  margin-left: 0px;
  width: 90%;
}

form {
  padding: 10px;
  padding-left: 30px;
  border-style: groove;
  border-width: 2px;
  border-color: #E9ECEF;
}

input {
  border-radius: 25px;
  outline: none;
  padding: 10px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  border: 3px solid gray;
  width: 100%;
}

input:focus {
  border: 3px solid #ff5a3d;
}

@media screen and (max-width: 600px) {
  #sub {
    width: 60%;
    margin-left: 40px;
  }
}

@media screen and (max-width: 400px) {
  #candidateInput {
    margin-left: 0px;
  }
}
/*# sourceMappingURL=styles.css.map */